Display examination schedule (date)ΒΆ

Display the examination schedule (extract the date from exam_st_date).
exam_st_date = (11, 12, 2014)
Sample Output:
The examination will start from : 11 / 12 / 2014
exam_st_date = (11, 12, 2014)

print("The examination will start from : %i / %i / %i"%exam_st_date)